home *** CD-ROM | disk | FTP | other *** search
/ Computer Inter@ctive 17 / Computer Interactive cdrom 17 - gen 99.iso / ZDNETIT / CONTENT / SMTPCEMS.ZIP / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1998-09-09  |  1.6 KB  |  57 lines

  1. @echo off
  2. if "%1" == "16" goto WIN16
  3. if "%1" == "MS" goto MS
  4. if "%1" == "BC" goto BC
  5. if "%1" == "WC" goto WC
  6. if "%1" == "ms" goto MS
  7. if "%1" == "bc" goto BC
  8. if "%1" == "wc" goto WC
  9. if "%1" == "u" goto MSU
  10. if "%1" == "U" goto MSU
  11. echo *** Usage is:
  12. echo *** 'INSTALL 16' for all Win16 compilers.
  13. echo *** 'INSTALL MS' for Win32 native Microsoft C/C++, Visual Basic.
  14. echo *** 'INSTALL BC' for Win32 native Borland C/C++, C Builder, Delphi.
  15. echo *** 'INSTALL WC' for Win32 native WATCOM C/C++
  16. echo *** 'INSTALL U'  for Win32 "universal"
  17. echo ***    Requires "declspec" keyword, which is supported in
  18. echo ***    Microsoft 4.0, Borland 5.0, and Watcom 11.0 compilers.
  19. echo ***    Can also be used with 32 bit Visual Basic and Delphi.
  20. echo ***
  21. goto FINI
  22. :WIN16
  23. echo ...Installing Win16 LIB and DLL
  24. REM (Only one version of Win16 DLL and LIB).
  25. copy SEE.H2     SEE.H
  26. goto DONE
  27. :MSU
  28. echo ...Installing Universal (Microsoft) LIB and DLL
  29. copy SEE32U.LIB SEE32.LIB
  30. copy SEE32U.DLL SEE32.DLL
  31. copy SEE.H2     SEE.H
  32. goto DONE
  33. :MS
  34. echo ...Installing native Microsoft LIB and DLL
  35. copy SEE32M.LIB SEE32.LIB
  36. copy SEE32M.DLL SEE32.DLL
  37. copy SEE.H1     SEE.H
  38. goto DONE
  39. :BC
  40. echo ...Installing native Borland LIB and DLL
  41. copy SEE32B.LIB SEE32.LIB
  42. copy SEE32B.DLL SEE32.DLL
  43. copy SEE.H1     SEE.H
  44. goto DONE
  45. :WC
  46. echo ...Installing native Watcom LIB and DLL
  47. copy SEE32W.LIB SEE32.LIB
  48. copy SEE32W.DLL SEE32.DLL
  49. copy SEE.H1     SEE.H
  50. :DONE
  51. echo ...Installation done. Before compiling example programs, edit 
  52. echo ...EMAIL.H with your email configuration as described in section
  53. echo ...3.5 of the SEE4C Users Manual (SEE4C_U.TXT).
  54.  
  55. :FINI
  56.  
  57.